home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 February: Tool Chest / Dev.CD Feb 94.toast / Tool Chest / Development Platforms / AppsToGo / AppsToGo.src / AppWannabe / App.protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-18  |  760 b   |  41 lines  |  [TEXT/MPS ]

  1. #ifndef __APPPROTOS__
  2. #define __APPPROTOS__
  3.  
  4.  
  5. #include "DTS.Lib.protos.h"
  6.  
  7.  
  8. /* NOTE:  These prototypes are in a single file as they are the standard functions
  9. **        functions for this application shell.  You may wish to have separate
  10. **        files for the prototypes of functions you add to the shell.  They are all
  11. **        here in a single file for simplicity. */
  12.  
  13.  
  14.  
  15. /************** DoEvent.c **************/
  16.  
  17. void            DoEvent(EventRecord *event);
  18.  
  19.  
  20.  
  21. /************** EventLoop.c **************/
  22.  
  23. void            EventLoop(void);
  24.  
  25.  
  26.  
  27. /************** IdleTasks.c **************/
  28.  
  29. void            DoIdleTasks(EventRecord *event);
  30.  
  31.  
  32.  
  33. /************** Menu.c **************/
  34.  
  35. Boolean            DoAdjustFileMenu(WindowPtr window);
  36. Boolean            DoAdjustEditMenu(WindowPtr window);
  37.  
  38.  
  39.  
  40. #endif
  41.